home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / image / gfview11.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1996-08-04  |  1KB  |  37 lines

  1. @echo off
  2. if "%1" == "" goto usage
  3. echo.
  4. echo.
  5. echo About To Install All gFView "SHAREWARE Version" Files To:  %1
  6. echo If this is not correct PRESS  Ctrl Break or Ctrl C  NOW  to abort
  7. echo the installation process and try again.
  8. echo Press  SPACE  bar to continue installation.
  9. pause >nul
  10. echo.
  11. echo Making directory %1
  12. md %1
  13. echo Copying all gFView "SHAREWARE Version" files to %1
  14. echo.
  15. copy *.* %1
  16. echo.
  17. echo All gFView "SHAREWARE Version" files have been copied to %1.
  18. echo You will need to add %1 to your PATH statement in your AUTOEXEC.BAT
  19. echo file to complete installation.  Please read the GFVIEW.DOC file for
  20. echo complete details on the use of this program.  If you are currently
  21. echo using FV.COM on your system it will need to be renamed to FVV.COM
  22. echo.
  23. goto END
  24.  
  25. :usage
  26. echo.
  27. echo gFView "SHAREWARE Version" Installation:
  28. echo.
  29. echo From A: or from a work directory where all files were copied or unzipped into.
  30. echo ------------------------------------------------------------------------------
  31. echo Usage:    INSTALL  [destination drive:\path]
  32. echo ------------------------------------------------------------------------------
  33. echo Example:  INSTALL  C:\GFVIEW    Will install all gFView files
  34. echo                                 into directory   C:\GFVIEW
  35. echo.
  36. :END
  37.